home *** CD-ROM | disk | FTP | other *** search
/ Stuart Little 2 Press Kit / Stuart Little 2 Press Kit.iso / pc / SL2.dxr / TrailerLogosNotes_6_OpenProdPDF.ls < prev    next >
Encoding:
Text File  |  2002-06-24  |  594 b   |  29 lines

  1. on mouseEnter
  2.   sprite(29).member = "Notes_Prod_RO"
  3.   cursor(280)
  4. end
  5.  
  6. on mouseLeave
  7.   sprite(29).member = "Notes_Prod"
  8.   cursor(0)
  9. end
  10.  
  11. on mouseDown
  12.   sound(3).play(member("click"))
  13.   sprite(112).visible = 1
  14.   updateStage()
  15.   thing()
  16. end
  17.  
  18. on mouseUp
  19.   pel = the moviePath & "MEDIA"
  20.   if the platform contains "Mac" then
  21.     Acrbat = the moviePath & "Acrobat Reader Mac 4.0:Acrobat Reader"
  22.     open(pel & ":NOTES:PRODUCTION.PDF", Acrbat)
  23.   else
  24.     Acrbat = the moviePath & "acrobat4\Reader\AcroRd32.exe"
  25.     open(pel & "\NOTES\PRODUCTION.PDF", Acrbat)
  26.     sprite(112).visible = 0
  27.   end if
  28. end
  29.